home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / misc_pto / f2c_exe / index < prev    next >
Text File  |  1991-06-10  |  13KB  |  335 lines

  1.  
  2. ====== index for f2c ============
  3.  
  4. FILES:
  5.  
  6. f2c.h    Include file necessary for compiling output of the converter.
  7.     See the second NOTE below.
  8.  
  9. f2c.1    Man page for f2c.
  10.  
  11. f2c.1t    Source for f2c.1 (to be processed by troff -man or nroff -man).
  12.  
  13. libf77    Library of non I/O support routines the generated C may need.
  14.     Fortran main programs result in a C function named MAIN__ that
  15.     is meant to be invoked by the main() in libf77.
  16.  
  17. libi77    Library of Fortran I/O routines the generated C may need.
  18.     Note that some vendors (e.g., BSD, Sun and MIPS) provide a
  19.     libF77 and libI77 that are incompatible with f2c -- they
  20.     provide some differently named routines or routines with the
  21.     names that f2c expects, but with different calling sequences.
  22.     On such systems, the recommended procedure is to merge
  23.     libf77 and libi77 into a single library, say libf2c, to install
  24.     it where you can access it by specifying -lf2c , and to adjust
  25.     the definition of link_msg in sysdep.c appropriately.
  26.  
  27. f2c.ps    Postscript for a technical report on f2c.  After you strip the
  28.     mail header, the first line should be "%!PS".
  29.  
  30. fixes    The complete change log, reporting bug fixes and other changes.
  31.     (Some recent change-log entries are given below).
  32.  
  33. fc    A shell script that uses f2c and imitates much of the behavior
  34.     of commonly found f77 commands.  You will almost certainly
  35.     need to adjust some of the shell-variable assignments to make
  36.     this script work on your system.
  37.  
  38.  
  39. SUBDIRECTORY:
  40.  
  41. f2c/src    Source for the converter itself, including a file of checksums
  42.     and source for a program to compute the checksums (to verify
  43.     correct transmission of the source), is available: ask netlib to
  44.         send all from f2c/src
  45.     If the checksums show damage to just a few source files, or if
  46.     the change log file (see "fixes" below) reports corrections to
  47.     some source files, you can request those files individually
  48.     "from f2c/src".  For example, to get defs.h and xsum0.out, you
  49.     would ask netlib to
  50.         send defs.h xsum0.out from f2c/src
  51.     "all from f2c/src" is 649038 bytes long.
  52.  
  53.     Tip: if asked to send over 99,000 bytes in one request, netlib
  54.     breaks the shipment into 1000 line pieces and sends each piece
  55.     separately (since otherwise some mailers might gag).  To avoid
  56.     the hassle of reassembling the pieces, try to keep each request
  57.     under 99,000 bytes long.  The final number in each line of
  58.     xsum0.out gives the length of each file in f2c/src.  For
  59.     example,
  60.         send exec.c expr.c from f2c/src
  61.         send format.c format_data.c from f2c/src
  62.     will give you slightly less hassle than
  63.         send exec.c expr.c format.c format_data.c from f2c/src
  64.  
  65.     If you have trouble generating gram.c, you can ask netlib to
  66.         send gram.c from f2c/src
  67.     Then `xsum gram.c` should report
  68.         gram.c    ecbbc041    57191
  69.  
  70. NOTE:    For now, you may exercise f2c by sending netlib a message whose
  71.     first line is "execute f2c" and whose remaining lines are
  72.     the Fortran 77 source that you wish to have converted.
  73.     Return mail brings you the resulting C, with f2c's error
  74.     messages between #ifdef uNdEfInEd and #endif at the end.
  75.     (To understand line numbers in the error messages, regard
  76.     the "execute f2c" line as line 0.  It is stripped away by
  77.     the netlib software before f2c sees your Fortran input.)
  78.     Options described in the man page may be transmitted to
  79.     netlib by having the first line of input be a comment
  80.     whose first 6 characters are "c$f2c " and whose remaining
  81.     characters are the desired options, e.g., "c$f2c -R -u".
  82.     This scheme may change -- ask netlib to
  83.                send index from f2c
  84.         if you do not get the behavior you expect.
  85.  
  86.     During the initial experimental period, incoming Fortran
  87.     will be saved in a file.  Don't send any secrets!
  88.  
  89.  
  90. BUGS:    Please send bug reports (including the shortest example
  91.     you can find that illustrates the bug) to research!dmg
  92.     or dmg@research.att.com .  You might first check whether
  93.     the bug goes away when you turn optimization off.
  94.  
  95.  
  96. NOTE:    f2c.h defines several types, e.g., real, integer, doublereal.
  97.     The definitions in f2c.h are suitable for most machines, but if
  98.     your machine has sizeof(double) > 2*sizeof(long), you may need
  99.     to adjust f2c.h appropriately.  f2c assumes
  100.         sizeof(doublecomplex) = 2*sizeof(doublereal)
  101.         sizeof(doublereal) = sizeof(complex)
  102.         sizeof(doublereal) = 2*sizeof(real)
  103.         sizeof(real) = sizeof(integer)
  104.         sizeof(real) = sizeof(logical)
  105.         sizeof(real) = 2*sizeof(shortint)
  106.     EQUIVALENCEs may not be translated correctly if these
  107.     assumptions are violated.
  108.  
  109.     There exists a C compiler that objects to the lines
  110.         typedef VOID C_f;    /* complex function */
  111.         typedef VOID H_f;    /* character function */
  112.         typedef VOID Z_f;    /* double complex function */
  113.     in f2c.h .  If yours is such a compiler, do two things:
  114.     1. Complain to your vendor about this compiler bug.
  115.     2. Find the line
  116.         #define VOID void
  117.        in f2c.h and change it to
  118.         #define VOID int
  119.     (For readability, the f2c.h lines shown above have had two
  120.     tabs inserted before their first character.)
  121.  
  122. FTP:    All the material described above is now available by anonymous
  123.     ftp from research.att.com -- look in dist/f2c .  You must
  124.     uncompress the .Z files once you have a copy of them, e.g., by
  125.         uncompress *.Z
  126.  
  127. -----------------
  128. Recent change log (partial)
  129. -----------------
  130.  
  131. Tue Jan 15 12:00:24 EST 1991:
  132.   Fix bug when two equivalence groups are merged, the second with
  133. nonzero offset, and the result is then merged into a common block.
  134. Example:
  135.       INTEGER W(3), X(3), Y(3), Z(3)
  136.       COMMON /ZOT/ Z
  137.       EQUIVALENCE (W(1),X(1)), (X(2),Y(1)), (Z(3),X(1))
  138. ***** W WAS GIVEN THE WRONG OFFSET
  139.   Recognize Fortran 90's optional NML= in NAMELIST READs and WRITEs.
  140. (Currently NML= and FMT= are treated as synonyms -- there's no
  141. error message if, e.g., NML= specifies a format.)
  142.   libi77: minor adjustment to allow internal READs from character
  143. string constants in read-only memory.
  144.  
  145. Wed Jan 23 00:38:48 EST 1991:
  146.   Allow hex, octal, and binary constants to have the qualifying letter
  147. (z, x, o, or b) either before or after the quoted string containing the
  148. digits.  For now this change will not be reflected in f2c.ps .
  149.  
  150. Tue Jan 29 16:23:45 EST 1991:
  151.   Arrange for character-valued statement functions to give results of
  152. the right length (that of the statement function's name).
  153.  
  154. Wed Jan 30 07:05:32 EST 1991:
  155.   More tweaks for character-valued statement functions: an error
  156. check and an adjustment so a right-hand side of nonconstant length
  157. (e.g., a substring) is handled right.
  158.  
  159. Thu Jan 31 13:53:44 EST 1991:
  160.   Add a test after the cleanup call generated for I/O statements with
  161. ERR= or END= clauses to catch the unlikely event that the cleanup
  162. routine encounters an error.
  163.  
  164. Tue Feb  5 01:39:36 EST 1991:
  165.   Change Mktemp to mktmp (for the benefit of systems so brain-damaged
  166. that they do not distinguish case in external names -- and that for
  167. some reason want to load mktemp).  Try to get xsum0.out right this
  168. time (it somehow didn't get updated on 4 Feb. 1991).
  169.   Add note to libi77/README about adjusting the interpretation of
  170. RECL= specifiers in OPENs for direct unformatted I/O.
  171.  
  172. Thu Feb  7 17:24:42 EST 1991:
  173.   New option -r casts values of REAL functions, including intrinsics,
  174. to REAL.  This only matters for unportable code like
  175.     real r
  176.     r = asin(1.)
  177.     if (r .eq. asin(1.)) ...
  178. [The behavior of such code varies with the Fortran compiler used --
  179. and sometimes is affected by compiler options.]  For now, the man page
  180. at the end of f2c.ps is the only part of f2c.ps that reflects this new
  181. option.
  182.  
  183. Fri Feb  8 18:12:51 EST 1991:
  184.   Cast pointer differences passed as arguments to the appropriate type.
  185. This matters, e.g., with MSDOS compilers that yield a long pointer
  186. difference but have int == short.
  187.   Disallow nonpositive dimensions.
  188.  
  189. Fri Feb 15 12:24:15 EST 1991:
  190.   Change %d to %ld in sprintf call in putpower in putpcc.c.
  191.   Free more memory (e.g. allowing translation of larger Fortran
  192. files under MS-DOS).
  193.   Recognize READ (character expression)
  194. as formatted I/O with the format given by the character expression.
  195.   Update year in Notice.
  196.  
  197. Mon Mar  4 15:19:42 EST 1991:
  198.   Fix bug in passing the real part of a complex argument to an intrinsic
  199. function.  Omit unneeded parentheses in nested calls to intrinsics.
  200. Example:
  201.     subroutine foo(x, y)
  202.     complex y
  203.     x = exp(sin(real(y))) + exp(imag(y))
  204.     end
  205.  
  206. Fri Mar  8 15:05:42 EST 1991:
  207.   Fix a comment in expr.c; omit safstrncpy.c (which had bugs in
  208. cases not used by f2c).
  209.  
  210. Wed Mar 13 02:27:23 EST 1991:
  211.   Initialize firstmemblock->next in mem_init in mem.c .  [On most
  212. systems it was fortuituously 0, but with System V, -lmalloc could
  213. trip on this missed initialization.]
  214.  
  215. Wed Mar 13 11:47:42 EST 1991:
  216.   Fix a reference to freed memory.
  217.  
  218. Wed Mar 27 00:42:19 EST 1991:
  219.   Fix a memory fault caused by such illegal Fortran as
  220.        function foo
  221.        x = 3
  222.        logical foo    ! declaration among executables
  223.        foo=.false.    ! used to suffer memory fault
  224.        end
  225.  
  226. Fri Apr  5 08:30:31 EST 1991:
  227.   Fix loss of % in some format expressions, e.g.
  228.     write(*,'(1h%)')
  229.   Fix botch introduced 27 March 1991 that caused subroutines with
  230. multiple entry points to have extraneous declarations of ret_val.
  231.  
  232. Fri Apr  5 12:44:02 EST 1991
  233.   Try again to omit extraneous ret_val declarations -- this morning's
  234. fix was sometimes wrong.
  235.  
  236. Mon Apr  8 13:47:06 EDT 1991:
  237.   Arrange for s_rnge to have the right prototype under -A -C .
  238.  
  239. Wed Apr 17 13:36:03 EDT 1991:
  240.   New fatal error message for apparent invocation of a recursive
  241. statement function.
  242.  
  243. Thu Apr 25 15:13:37 EDT 1991:
  244.   F2c and libi77 adjusted so NAMELIST works with -i2.  (I forgot
  245. about -i2 when adding NAMELIST.)  This required a change to f2c.h
  246. (that only affects NAMELIST I/O under -i2.)  Man-page description of
  247. -i2 adjusted to reflect that -i2 stores array lengths in short ints.
  248.  
  249. Fri Apr 26 02:54:41 EDT 1991:
  250.   Libi77: fix some bugs in NAMELIST reading of multi-dimensional arrays
  251. (file rsne.c).
  252.  
  253. Tue May  7 09:04:48 EDT 1991:
  254.   gram.c added to f2c/src (for folks who have trouble generating it.  It
  255. is not in "all from f2c", nor in the list of current timestamps below.)
  256.  
  257. Thu May  9 02:13:51 EDT 1991:
  258.   Omit a trailing space in expr.c (could cause a false xsum value if
  259. a mailer drops the trailing blank).
  260.  
  261. Thu May 16 13:14:59 EDT 1991:
  262.   libi77: increase LEFBL in lio.h to overcome a NeXT bug.
  263.   Tweak for compilers that recognize "nested" comments: inside comments,
  264. turn /* into /+ (as well as */ into +/).
  265.  
  266. Sat May 25 11:44:25 EDT 1991:
  267.   libf77: s_rnge: declare line long int rather than int.
  268.  
  269. Fri May 31 07:51:50 EDT 1991:
  270.   libf77: system_: officially return status.
  271.  
  272. Current timestamps of files in "all from f2c/src", sorted by time,
  273. appear below (mm/dd/year hh:mm:ss).  To bring your source up to date,
  274. obtain source files with a timestamp later than the time shown in your
  275. version.c.  Note that the time shown in the current version.c is the
  276. timestamp of the source module that immediately follows version.c below:
  277.  
  278.  5/16/1991  13:06:18  version.c
  279.  5/16/1991  13:06:06  p1output.c
  280.  5/09/1991   2:17:43  xsum0.out
  281.  5/09/1991   1:59:46  expr.c
  282.  4/25/1991  13:20:26  f2c.1
  283.  4/25/1991  12:56:19  f2c.h
  284.  4/25/1991  12:51:27  f2c.1t
  285.  4/25/1991  12:21:52  format.c
  286.  4/25/1991  12:10:22  io.c
  287.  4/05/1991  12:36:53  proc.c
  288.  4/05/1991   7:43:45  mem.c
  289.  3/13/1991  11:18:09  output.c
  290.  3/08/1991  10:14:45  niceprintf.c
  291.  3/08/1991   9:28:48  makefile
  292.  2/15/1991  12:08:26  Notice
  293.  2/15/1991  12:05:51  putpcc.c
  294.  2/08/1991  13:22:29  gram.dcl
  295.  2/08/1991  11:29:18  intr.c
  296.  2/08/1991  11:29:18  malloc.c
  297.  2/08/1991  11:29:18  gram.exec
  298.  2/05/1991  23:46:33  main.c
  299.  2/05/1991   0:52:39  exec.c
  300.  2/05/1991   0:52:39  defs.h
  301.  1/22/1991  19:25:10  lex.c
  302.  1/18/1991  22:49:23  README
  303.  1/15/1991   1:21:00  equiv.c
  304. 12/16/1990  22:55:25  misc.c
  305. 12/16/1990  16:46:20  xsum.c
  306. 12/07/1990  17:37:08  names.c
  307. 11/30/1990   9:47:48  data.c
  308.  7/26/1990  10:54:47  parse_args.c
  309.  7/26/1990  10:44:26  parse.h
  310.  6/19/1990   0:18:23  formatdata.c
  311.  5/11/1990  14:17:04  error.c
  312.  4/23/1990  17:35:47  sysdep.h
  313.  4/23/1990  16:37:50  sysdep.c
  314.  4/18/1990  12:25:19  init.c
  315.  4/18/1990  12:25:19  pread.c
  316.  4/18/1990  12:25:18  cds.c
  317.  4/10/1990   0:00:38  put.c
  318.  4/06/1990   0:00:57  gram.io
  319.  4/05/1990  23:40:09  gram.expr
  320.  3/27/1990  16:39:18  names.h
  321.  3/27/1990  10:05:15  p1defs.h
  322.  3/27/1990  10:05:14  defines.h
  323.  3/27/1990   7:54:52  gram.head
  324.  2/25/1990   9:04:30  vax.c
  325.  2/16/1990  10:37:27  tokens
  326.  2/14/1990   2:00:20  format.h
  327.  2/14/1990   1:38:46  output.h
  328.  2/14/1990   0:54:06  iob.h
  329.  2/03/1990   0:58:26  niceprintf.h
  330.  1/29/1990  13:26:52  memset.c
  331.  1/11/1990  18:02:51  ftypes.h
  332.  1/07/1990   1:20:01  usignal.h
  333. 11/27/1989   8:27:37  machdefs.h
  334.  7/01/1989  11:59:44  pccdefs.h
  335.